home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource4 / 223_01 / isgraph.c < prev    next >
Text File  |  1979-12-31  |  256b  |  8 lines

  1. /*
  2. ** return 'true' if c is a graphic character
  3. ** (33-126)
  4. */
  5. isgraph(c) int c; {
  6.   return (c>=33 && c<=126);
  7.   }
  8.